I'm trying to use M_Action_Callback but I don't fully
understand how it works.
I registered the callback function, and I changed the mode
of letter M3 to M_Action_Callback
but what if I need two different functions,let's say
M3=Spindle on, M4= Spindle off, can I use 2 different
callbacks? I dont see how I'm going to tell what function
it's going to use
And how do I pass a parameter for the letter S for the
RPM? the letter S use this method?
below it's the code I'm using.
KM_Controller KM;
KM_CoordMotion CM;
KM_Interpreter GCode;
public
GCodeInterpreter()//this is the form
{
InitializeComponent();
KM = new KM_Controller();
CM = new KM_CoordMotion(KM);
CM.Interpreter.InterpreterUserMCodeCallbackRequested +=
new KM_Interpreter.KM_GCodeInterpreterUserMcodeCallbackHandler(Run);
CM.Interpreter.InterpreterUserMCodeCallbackRequested +=
new KM_Interpreter.KM_GCodeInterpreterUserMcodeCallbackHandler(Stop);
GCode = new
KM_Interpreter(CM);
}
private
void GCodeInterpreter_Load(object sender, EventArgs e)
{
GCode.SetMcodeAction(3,MCODE_TYPE.M_Action_Callback,
0,0,0,0,0,"");
GCode.SetMcodeAction(4,MCODE_TYPE.M_Action_Callback,
0,0,0,0,0,"");
}
private int Run(int code)
{
MessageBox.Show("Run");
return 0;
}
private int Run(int code)
{
MessageBox.Show("Stop");
return 0;
}